This is the starting tag of html code and ends with </html> indicating the end of html codes. The <html> tag tells the browser that this is an HTML document. The html element is also known as the root element.  
<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>
 


All Tutorial => 123456789101112131415





Write Comment